VoiceGuide IVR Software Main Page
Jump to content

Run Vbscript

Recommended Posts

Hello,

It takes 15 second that my vbs get data from my web database (located in my web host) and pass it on to Evaluate Expression module. is there any way to faster this process?

Share this post


Link to post

The delays would most likely be on the web server. The locally ran VBScript has low overheads and runs local functions fast enough for you to not even notice it.

 

You could use WireShark to perform the tracing to confirm when the http requests were issued and when the sending of the response completed.

 

Suggest you try running standalone VBScripts outside of VocieGuide and use Message Boxes to at vital points throughout the script. This will also let you see how long execution of the various parts of the script takes.

 

Whey are you using a Web host to access the database? Can't you setup things to allow use of Database Query module to access the database directly?

Share this post


Link to post

Thanks for your response, I will use WireShark and let you know where the delay is.

I can not use local database, becuase, my client will enter their information from all over U.S.A into my web database. I need to access the database in web host to pull the information down and announce them to people.

 

Thanks again.

Share this post


Link to post

You can just provide the IP address of the database in the database connection string. Then you just use the normal database connection - the DB just is located on another server.

 

You should ensure that your network is capable of communicating the database connections between IVR and the DB server.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×